-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/api keys #122
Feat/api keys #122
Conversation
src/apis/apiKeys.ts
Outdated
last_updated_at?: Date; | ||
creation_mode?: string; | ||
rate_limits?: Record<string, unknown>[]; | ||
usage_limits?: Record<string, unknown>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Record of the type string, any or it has to be unknown?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also check for the same in the other interfaces as well
src/apis/apiKeys.ts
Outdated
id?: string; | ||
} | ||
|
||
function toQueryParams(params?: ApiKeysListParams): string { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extract this function of utils.ts
api-keys API added
Description:
Related Issues:
#121